home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / DevCon / Milan_1991 / Devcon91.1 / Libraries / Intuition / other_examples / PubSc / tmsg.h < prev   
Encoding:
C/C++ Source or Header  |  1992-09-01  |  546 b   |  23 lines

  1. /* tmsg.h -- text message area    */
  2.  
  3. /*
  4. Copyright (c) 1989 Commodore-Amiga, Inc.
  5.  
  6. Executables based on this information may be used in software
  7. for Commodore Amiga computers. All other rights reserved.
  8. This information is provided "as is"; no warranties are made.
  9. All use is at your own risk, and no liability or responsibility
  10. is assumed.
  11. */
  12.  
  13. struct TextMsg {
  14.     struct TextMsg        *tm_Next;
  15.     WORD                tm_Left;
  16.     WORD                tm_Top;
  17.     WORD                tm_LimitWidth;    /* clip to limits            */
  18.     WORD                tm_BufSize;
  19.     UBYTE                *tm_Buffer;
  20.  
  21.     /* buffers come after this    */
  22. };
  23.